1 <?php
2     include_once
'header.php';
3 ?>
4
5 <style >
6     p {font-family: monospace; font-size:
300%; color: yellow;}
7     body{
8                 background-image: url(
"images/cinema.jpg");
9                 -moz-background-size: cover;
10                 -webkit-background-size: cover;
11                  background-size:
100% 115vh;
12                 background-position: top center !important;
13                 background-repeat: no-repeat !important;
14                 background-attachment:
fixed;
15                 
16             }
17 </style>
18
19 <section
class="main-container" >
20     <div
class="main-wrapper">
21         
22         <?php
23             
if(isset($_SESSION['success1']))
24             {
25                 echo
'<p align=middle><br><br><br>'.$_SESSION['success1'].'</p>';
26                 unset($_SESSION[
'success1']);
27             }
28             
else
29             {
30                 
if (isset($_SESSION['u_id'])) {
31                     echo
"<p align=center><br><b>You are still Logged in. <BR> Log out to Continue.</b></p> ";
32                 }
33
34                 
if(isset($_SESSION['errors']))
35                 {
36                     echo
'<p align=middle> Invalid username or password.<br> Please try again.</b></p>';
37                     unset($_SESSION[
'errors']);
38                 }
39             }
40                 
41         ?>
42     </div>
43 </section>
44 <body></body>
45 <?php
46     include_once
'footer.php';
47 ?>


Gõ tìm kiếm nhanh...